home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-01.zip / 01 / CHIP / Software / HateML Pro 1.0063 / HateML_10063.exe / {app} / Data / JS / js.xml < prev   
Text File  |  2006-06-26  |  98KB  |  1,189 lines

  1. <!--
  2. JavaScript reference
  3. generated by Migajek Software W3c_js Spiderbot
  4. Copyright 2006 by Michal Gajek, Migajek Software
  5. migajek@yahoo.com
  6. http://migajek.com/
  7. if you want to use this file, ask me for permission
  8. -->
  9.  
  10. <js>
  11.  
  12.  <object name="Array" desc="The JavaScript Array object is used to store a set of values in a single variable name. ">
  13.    <method name="concat()" desc="Joins two or more arrays and returns the result  " />
  14.    <method name="join()" desc="Puts all the elements of an array into a string. The elements are separated by a specified delimiter " />
  15.    <method name="pop()" desc="Removes and returns the last element of an array " />
  16.    <method name="push()" desc="Adds one or more elements to the end of an array and returns the new length " />
  17.    <method name="reverse()" desc="Reverses the order of the elements in an array " />
  18.    <method name="shift()" desc="Removes and returns the first element of an array " />
  19.    <method name="slice()" desc="Returns selected elements from an existing array " />
  20.    <method name="sort()" desc="Sorts the elements of an array " />
  21.    <method name="splice()" desc="Removes and adds new elements to an array " />
  22.    <method name="toSource()" desc="Represents the source code of an object " />
  23.    <method name="toString()" desc="Converts an array to a string and returns the result " />
  24.    <method name="unshift()" desc="Adds one or more elements to the beginning of an array and returns the new length " />
  25.    <method name="valueOf()" desc="Returns the primitive value of an Array object" />
  26.    <prop name="constructor" desc="A reference to the function that created the object  " />
  27.    <prop name="index" desc="  " />
  28.    <prop name="input" desc="  " />
  29.    <prop name="length" desc="Sets or returns the number of elements in an array " />
  30.    <prop name="prototype" desc="Allows you to add properties and methods to the object" />
  31.  </object>
  32.  
  33.  <object name="Boolean" desc="The JavaScript Boolean object is an object wrapper for a Boolean value. ">
  34.    <method name="toSource()" desc="Represents the source code of an object  " />
  35.    <method name="toString()" desc="Converts a Boolean value to a string and returns the result " />
  36.    <method name="valueOf()" desc="Returns the primitive value of a Boolean object " />
  37.  
  38.  </object>
  39.  
  40.  <object name="Date" desc="The JavaScript Date object is used to work with dates and times. ">
  41.    <method name="Date()" desc="Returns today's date and time      1      2      3" />
  42.    <method name="getDate()" desc="Returns the day of the month from a Date object (from 1-31) " />
  43.    <method name="getDay()" desc="Returns the day of the week from a Date object (from 0-6) " />
  44.    <method name="getMonth()" desc="Returns the month from a Date object (from 0-11) " />
  45.    <method name="getFullYear()" desc="Returns the year, as a four-digit number, from a Date object " />
  46.    <method name="getYear()" desc="Returns the year, as a two-digit or a four-digit number, from a Date object. Use getFullYear() instead !! " />
  47.    <method name="getHours()" desc="Returns the hour of a Date object (from 0-23) " />
  48.    <method name="getMinutes()" desc="Returns the minutes of a Date object (from 0-59) " />
  49.    <method name="getSeconds()" desc="Returns the seconds of a Date object (from 0-59) " />
  50.    <method name="getMilliseconds()" desc="Returns the milliseconds of a Date object (from 0-999) " />
  51.    <method name="getTime()" desc="Returns the number of milliseconds since midnight Jan 1, 1970 " />
  52.    <method name="getTimezoneOffset()" desc="Returns the difference in minutes between local time and Greenwich Mean Time (GMT) " />
  53.    <method name="getUTCDate()" desc="Returns the day of the month from a Date object according to universal time (from 1-31) " />
  54.    <method name="getUTCDay()" desc="Returns the day of the week from a Date object according to universal time (from 0-6) " />
  55.    <method name="getUTCMonth()" desc="Returns the month from a Date object according to universal time (from 0-11) " />
  56.    <method name="getUTCFullYear()" desc="Returns the four-digit year from a Date object according to universal time " />
  57.    <method name="getUTCHours()" desc="Returns the hour of a Date object according to universal time (from 0-23) " />
  58.    <method name="getUTCMinutes()" desc="Returns the minutes of a Date object according to universal time (from 0-59) " />
  59.    <method name="getUTCSeconds()" desc="Returns the seconds of a Date object according to universal time (from 0-59) " />
  60.    <method name="getUTCMilliseconds()" desc="Returns the milliseconds of a Date object according to universal time (from 0-999) " />
  61.    <method name="parse()" desc="Takes a date string and returns the number of milliseconds since midnight of January 1, 1970 " />
  62.    <method name="setDate()" desc="Sets the day of the month in a Date object (from 1-31) " />
  63.    <method name="setMonth()" desc="Sets the month in a Date object (from 0-11) " />
  64.    <method name="setFullYear()" desc="Sets the year in a Date object (four digits) " />
  65.    <method name="setYear()" desc="Sets the year in the Date object (two or four digits). Use setFullYear() instead !! " />
  66.    <method name="setHours()" desc="Sets the hour in a Date object (from 0-23) " />
  67.    <method name="setMinutes()" desc="Set the minutes in a Date object (from 0-59) " />
  68.    <method name="setSeconds()" desc="Sets the seconds in a Date object (from 0-59) " />
  69.    <method name="setMilliseconds()" desc="Sets the milliseconds in a Date object (from 0-999) " />
  70.    <method name="setTime()" desc="Calculates a date and time by adding or subtracting a specified number of milliseconds to/from midnight January 1, 1970 " />
  71.    <method name="setUTCDate()" desc="Sets the day of the month in a Date object according to universal time (from 1-31) " />
  72.    <method name="setUTCMonth()" desc="Sets the month in a Date object according to universal time (from 0-11) " />
  73.    <method name="setUTCFullYear()" desc="Sets the year in a Date object according to universal time (four digits) " />
  74.    <method name="setUTCHours()" desc="Sets the hour in a Date object according to universal time (from 0-23) " />
  75.    <method name="setUTCMinutes()" desc="Set the minutes in a Date object according to universal time (from 0-59) " />
  76.    <method name="setUTCSeconds()" desc="Set the seconds in a Date object according to universal time (from 0-59) " />
  77.    <method name="setUTCMilliseconds()" desc="Sets the milliseconds in a Date object according to universal time (from 0-999) " />
  78.    <method name="toSource()" desc="Represents the source code of an object " />
  79.    <method name="toString()" desc="Converts a Date object to a string " />
  80.    <method name="toGMTString()" desc="Converts a Date object, according to Greenwich time, to a string. Use toUTCString() instead !! " />
  81.    <method name="toUTCString()" desc="Converts a Date object, according to universal time, to a string " />
  82.    <method name="toLocaleString()" desc="Converts a Date object, according to local time, to a string " />
  83.    <method name="UTC()" desc="Takes a date and returns the number of milliseconds since midnight of January 1, 1970 according to universal time " />
  84.    <method name="valueOf()" desc="Returns the primitive value of a Date object " />
  85.    <prop name="constructor" desc="A reference to the function that created the object  " />
  86.    <prop name="prototype" desc="Allows you to add properties and methods to the object " />
  87.  
  88.  </object>
  89.  
  90.  
  91.  <object name="Math" desc="The JavaScript Math object allows you to perform common mathematical tasks. It includes several mathematical constants and functions.">
  92.    <method name="abs(x)" desc="Returns the absolute value of a number  " />
  93.    <method name="acos(x)" desc="Returns the arccosine of a number " />
  94.    <method name="asin(x)" desc="Returns the arcsine of a number " />
  95.    <method name="atan(x)" desc="Returns the arctangent of x as a numeric value between -PI/2 and PI/2 radians " />
  96.    <method name="atan2(y,x)" desc="Returns the angle theta of an (x,y) point as a numeric value between -PI and PI radians " />
  97.    <method name="ceil(x)" desc="Returns the value of a number rounded upwards to the nearest integer " />
  98.    <method name="cos(x)" desc="Returns the cosine of a number " />
  99.    <method name="exp(x)" desc="Returns the value of Ex " />
  100.    <method name="floor(x)" desc="Returns the value of a number rounded downwards to the nearest integer " />
  101.    <method name="log(x)" desc="Returns the natural logarithm (base E) of a number " />
  102.    <method name="max(x,y)" desc="Returns the number with the highest value of x and y " />
  103.    <method name="min(x,y)" desc="Returns the number with the lowest value of x and y " />
  104.    <method name="pow(x,y)" desc="Returns the value of x to the power of y " />
  105.    <method name="random()" desc="Returns a random number between 0 and 1 " />
  106.    <method name="round(x)" desc="Rounds a number to the nearest integer " />
  107.    <method name="sin(x)" desc="Returns the sine of a number " />
  108.    <method name="sqrt(x)" desc="Returns the square root of a number " />
  109.    <method name="tan(x)" desc="Returns the tangent of an angle " />
  110.    <method name="toSource()" desc="Represents the source code of an object " />
  111.    <method name="valueOf()" desc="Returns the primitive value of a Math object " />
  112.    <prop name="constructor" desc="A reference to the function that created the object  " />
  113.    <prop name="E" desc="Returns Euler's constant (approx. 2.718)     1     2     3" />
  114.    <prop name="LN2" desc="Returns the natural logarithm of 2 (approx. 0.693) " />
  115.    <prop name="LN10" desc="Returns the natural logarithm of 10 (approx. 2.302) " />
  116.    <prop name="LOG2E" desc="Returns the base-2 logarithm of E (approx. 1.442) " />
  117.    <prop name="LOG10E" desc="Returns the base-10 logarithm of E (approx. 0.434) " />
  118.    <prop name="PI" desc="Returns PI (approx. 3.14159) " />
  119.    <prop name="prototype" desc="Allows you to add properties and methods to the object " />
  120.    <prop name="SQRT1_2" desc="Returns the square root of 1/2 (approx. 0.707) " />
  121.    <prop name="SQRT2" desc="Returns the square root of 2 (approx. 1.414) " />
  122.  
  123.  </object>
  124.  
  125.  <object name="String" desc="The String object is used to manipulate a stored piece of text.">
  126.    <method name="anchor()" desc="Creates an HTML anchor  " />
  127.    <method name="big()" desc="Displays a string in a big font " />
  128.    <method name="blink()" desc="Displays a blinking string " />
  129.    <method name="bold()" desc="Displays a string in bold " />
  130.    <method name="charAt()" desc="Returns the character at a specified position " />
  131.    <method name="charCodeAt()" desc="Returns the Unicode of the character at a specified position " />
  132.    <method name="concat()" desc="Joins two or more strings " />
  133.    <method name="fixed()" desc="Displays a string as teletype text " />
  134.    <method name="fontcolor()" desc="Displays a string in a specified color " />
  135.    <method name="fontsize()" desc="Displays a string in a specified size " />
  136.    <method name="fromCharCode()" desc="Takes the specified Unicode values and returns a string " />
  137.    <method name="indexOf()" desc="Returns the position of the first occurrence of a specified string value in a string " />
  138.    <method name="italics()" desc="Displays a string in italic " />
  139.    <method name="lastIndexOf()" desc="Returns the position of the last occurrence of a specified string value, searching backwards from the specified position in a string " />
  140.    <method name="link()" desc="Displays a string as a hyperlink " />
  141.    <method name="match()" desc="Searches for a specified value in a string " />
  142.    <method name="replace()" desc="Replaces some characters with some other characters in a string " />
  143.    <method name="search()" desc="Searches a string for a specified value " />
  144.    <method name="slice()" desc="Extracts a part of a string and returns the extracted part in a new string " />
  145.    <method name="small()" desc="Displays a string in a small font " />
  146.    <method name="split()" desc="Splits a string into an array of strings " />
  147.    <method name="strike()" desc="Displays a string with a strikethrough " />
  148.    <method name="sub()" desc="Displays a string as subscript " />
  149.    <method name="substr()" desc="Extracts a specified number of characters in a string, from a start index " />
  150.    <method name="substring()" desc="Extracts the characters in a string between two specified indices " />
  151.    <method name="sup()" desc="Displays a string as superscript " />
  152.    <method name="toLowerCase()" desc="Displays a string in lowercase letters " />
  153.    <method name="toUpperCase()" desc="Displays a string in uppercase letters " />
  154.    <method name="toSource()" desc="Represents the source code of an object " />
  155.    <method name="valueOf()" desc="Returns the primitive value of a String object " />
  156.    <prop name="constructor" desc="A reference to the function that created the object  " />
  157.    <prop name="length" desc="Returns the number of characters in a string " />
  158.    <prop name="prototype" desc="Allows you to add properties and methods to the object " />
  159.  
  160.  </object>
  161.  
  162.  
  163.  
  164.  <object name="anchor" desc="Represents an HTML a element (a hyperlink)">
  165.   <prop name="accessKey" desc="Sets or returns the keyboard key to access the link" />
  166.   <prop name="charset" desc="Sets or returns the character set of the linked resource" />
  167.   <prop name="coords" desc="Sets or retrieves a comma-separated list with coordinates, defining an active region geometry" />
  168.   <prop name="href" desc="Sets or returns the URL of the linked resource" />
  169.   <prop name="hreflang" desc="Sets or returns the language code of the linked resource" />
  170.   <prop name="id" desc="Sets or returns the id of the link" />
  171.   <prop name="innerHTML" desc="Sets or returns the text of the link" />
  172.   <prop name="name" desc="Sets or returns the name of the link" />
  173.   <prop name="rel" desc="Sets or returns the relationship between the current document and the target URL" />
  174.   <prop name="rev" desc="Sets or returns the relationship between the current document and the target URL" />
  175.   <prop name="name" desc="Sets or returns the name of the link" />
  176.   <prop name="shape" desc="Sets or returns the active area. Coordinates are given by coords" />
  177.   <prop name="tabIndex" desc="Sets or returns the index that defines the tab order for the link" />
  178.   <prop name="target" desc="Sets or returns where to open the target URL" />
  179.   <prop name="type" desc="Sets or returns the MIME type of the linked resource" />
  180.  
  181.   <method name="blur" desc="Removes focus from the link" />
  182.   <method name="focus" desc="Gives focus to the link" />
  183.  
  184.   <event name="onBlur" desc="Executes some code when the link loses focus" />
  185.   <event name="onFocus" desc="Executes some code when the link gets focus" />
  186.  </object>
  187.  
  188.  
  189.  <object name="applet" desc="Represents an HTML applet element. The applet element is used to place executable content on a page" >
  190.  </object>
  191.  
  192.  
  193.  <object name="area" desc="Represents an area of an image-map. An image-map is an image with clickable regions" >
  194.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the area object  " />
  195.    <prop name="alt" desc="Sets or returns an alternate text for browsers that cannot show an area " />
  196.    <prop name="coords" desc="Sets or returns a comma-separated list of lengths that defines the clickable area " />
  197.    <prop name="hash" desc="Sets or returns the anchor part of the URL (begins with a #) " />
  198.    <prop name="host" desc="Sets or returns the hostname and port of the URL " />
  199.    <prop name="hostname" desc="Sets or returns the server name and domain name/IP address of the URL " />
  200.    <prop name="href" desc="Sets or returns the entire URL " />
  201.    <prop name="id" desc="Sets or returns the id of the area object (In IE 4 this property is read-only) " />
  202.    <prop name="noHref" desc="Sets or returns if the area should be inactive " />
  203.    <prop name="pathname" desc="Sets or returns the pathname of the URL " />
  204.    <prop name="port" desc="Sets or returns the URL port the server uses " />
  205.    <prop name="protocol" desc="Sets or returns the URL protocol (including the first colon) e.g "http:", "https:" " />
  206.    <prop name="search" desc="Sets or returns the URL query string section (including the question mark (?)) " />
  207.    <prop name="shape" desc="Sets or returns the shape of the area " />
  208.    <prop name="tabIndex" desc="Sets or returns the tab order of the area object " />
  209.    <prop name="target" desc="Sets or returns URL link's target name" />
  210.  
  211.    <event name="onClick" desc="Executes some code when a Click event occurs  " />
  212.    <event name="onDblClick" desc="Executes some code when a Doubleclick event occurs " />
  213.    <event name="onMouseOut" desc="Executes some code when a Mouseout event occurs " />
  214.    <event name="onMouseOver" desc="Executes some code when a Mouseover event occurs " />
  215.  </object>
  216.  
  217.  
  218.  <object name="base" desc="Represents an HTML base element" >
  219.    <prop name="href" desc="Sets or returns the base URL for the document  " />
  220.    <prop name="id" desc="Sets or returns the id of the base object " />
  221.    <prop name="target" desc="Sets or returns the default target frame or window " />
  222.  </object>
  223.  
  224.  
  225.  <object name="basefont" desc="Represents an HTML basefont element" >
  226.  </object>
  227.  
  228.  
  229.  <object name="body" desc="Represents the body of the document (the HTML body)" >
  230.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the body object  " />
  231.    <prop name="aLink" desc="Sets or returns the color of active links in the document " />
  232.    <prop name="background" desc="Sets or returns the URL of the background image of the document " />
  233.    <prop name="bgColor" desc="Sets or returns the background color of the document " />
  234.    <prop name="id" desc="Sets or returns the id of the body (In IE 4 this property is read-only) " />
  235.    <prop name="link" desc="Sets or returns the color of links in the document " />
  236.    <prop name="scrollLeft" desc="Sets or returns the distance between the left edge of the body and the leftmost portion of the content visible in the window " />
  237.    <prop name="scrollTop" desc="Sets or returns the distance between the top edge of the body and the topmost portion of the content visible in the window " />
  238.    <prop name="text" desc="Sets or returns the color of text in the document " />
  239.    <prop name="vLink" desc="Sets or returns the color of visited links in the document " />
  240.  </object>
  241.  
  242.  
  243.  <object name="button" desc="Represents a push button on an HTML form. For each instance of an HTML <input type="button"> tag on an HTML form, a Button object is created" >
  244.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the button  " />
  245.    <prop name="disabled" desc="Sets or returns whether or not the button should be disabled " />
  246.    <prop name="form" desc="Returns a reference to the form that contains the button " />
  247.    <prop name="id" desc="Sets or returns the id of the button " />
  248.    <prop name="name" desc="Sets or returns the name of the button " />
  249.    <prop name="tabIndex" desc="Sets or returns the index that defines the tab order for the button " />
  250.    <prop name="type" desc="Returns the type of the form element. For a Button object it will be "button" " />
  251.    <prop name="value" desc="Sets or returns the text that is displayed on the button " />
  252.    <method name="blur" desc="Removes focus from the button  " />
  253.    <method name="click" desc="Simulates a mouse-click on the button " />
  254.    <method name="focus" desc="Gives focus to the button " />
  255.    <event name="onBlur" desc="Executes some code when the button loses focus  " />
  256.    <event name="onClick" desc="Executes some code when the button is clicked " />
  257.    <event name="onFocus" desc="Executes some code when the button gets focus " />
  258.    <event name="onMouseDown" desc="Executes some code when a mouse button is pressed " />
  259.    <event name="onMouseUp" desc="Executes some code when a mouse button is released" />
  260.  
  261.  </object>
  262.  
  263.  <object name="checkbox" desc="Represents a checkbox on an HTML form. For each instance of an HTML <input type="checkbox"> tag on an HTML form, a Checkbox object is created" >
  264.    <prop name="accept" desc="Sets or returns a list of content types, which the server processing this form will handle correctly  " />
  265.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the checkbox " />
  266.    <prop name="align" desc="Sets or returns the alignment of the checkbox according to the surrounding text " />
  267.    <prop name="alt" desc="Sets or returns an alternate text to display if the browser does not support checkboxes " />
  268.    <prop name="checked" desc="Sets or returns whether or not the checkbox is checked " />
  269.    <prop name="defaultChecked" desc="Sets or returns the default value of the checked attribute (true if checked by default and false if not) " />
  270.    <prop name="disabled" desc="Sets or returns whether or not the checkbox should be disabled " />
  271.    <prop name="form" desc="Returns a reference to the form that contains the checkbox " />
  272.    <prop name="id" desc="Sets or returns the id of the checkbox (In IE 4 this property is read-only) " />
  273.    <prop name="name" desc="Sets or returns the name of the checkbox " />
  274.    <prop name="tabIndex" desc="Sets or returns the index that defines the tab order for the checkbox " />
  275.    <prop name="type" desc="Returns the type of the form element. For a checkbox it will be "checkbox" " />
  276.    <prop name="value" desc="Sets or returns the value of the value attribute of the checkbox" />
  277.    <method name="blur" desc="Removes focus from the checkbox  " />
  278.    <method name="click" desc="Simulates a mouse-click in the checkbox " />
  279.    <method name="focus" desc="Gives focus to the checkbox " />
  280.    <event name="onBlur" desc="Executes some code when the checkbox loses focus  " />
  281.    <event name="onClick" desc="Executes some code when the checkbox is clicked " />
  282.    <event name="onFocus" desc="Executes some code when the checkbox gets focus " />
  283.    <event name="onMouseDown" desc="Executes some code when a mouse button is pressed " />
  284.    <event name="onMouseUp" desc="Executes some code when a mouse button is released " />
  285.  </object>
  286.  
  287.  <object name="document" desc="Used to access all elements in a page" >
  288.    <collect name="anchors[]" desc="Returns a reference to all Anchor objects in the document  " />
  289.    <collect name="applets[]" desc="Returns a reference to all Applet objects in the document " />
  290.    <collect name="attributes[]" desc="  " />
  291.    <collect name="childNodes[]" desc="  " />
  292.    <collect name="embeds[]" desc="Returns a reference to all embedded objects in the document " />
  293.    <collect name="forms[]" desc="Returns a reference to all Form objects in the document " />
  294.    <collect name="images[]" desc="Returns a reference to all Image objects in the document " />
  295.    <collect name="links[]" desc="Returns a reference to all Link objects in the document " />
  296.    <collect name="plugins[]" desc="  " />
  297.    <collect name="stylesheets[]" desc="  " />
  298.    <prop name="alinkColor" desc="Sets or returns the color of the active links in the document  " />
  299.    <prop name="bgColor" desc="Sets or returns the background-color of the document " />
  300.    <prop name="body" desc="Specifies the beginning and end of the document body " />
  301.    <prop name="cookie" desc="Sets or returns all cookies associated with the document " />
  302.    <prop name="documentElement" desc="Returns a reference to the root node of the document " />
  303.    <prop name="domain" desc="Returns the document server's domain name     4     1     3     Yes" />
  304.    <prop name="fgColor" desc="Sets or returns the text-color of the document " />
  305.    <prop name="lastModified" desc="Returns the date and time the document was last modified " />
  306.    <prop name="linkColor" desc="Sets or returns the color of the links in the document " />
  307.    <prop name="referrer" desc="Returns the URL of the document that loaded the current document " />
  308.    <prop name="title" desc="Returns the title of the document " />
  309.    <prop name="URL" desc="Returns the URL of the current document " />
  310.    <prop name="vlinkColor" desc="Sets or returns the color of the visited links in the document " />
  311.    <method name="clear" desc="Clears all elements in the document  " />
  312.    <method name="close" desc="Closes the output stream and displays the sent data " />
  313.    <method name="createAttribute" params="(name)" desc="Creates an attribute with a specified name " />
  314.    <method name="createElement" params="(tag)" desc="Creates an element " />
  315.    <method name="createTextNode" params="(txt)" desc="Creates a text string " />
  316.    <method name="focus" desc="Gives the document focus " />
  317.    <method name="getElementById" params="(id)" desc="Returns a reference to the first object with the specified ID " />
  318.    <method name="getElementsByName" params="(name)" desc="Returns a collection of objects with the specified NAME " />
  319.    <method name="getElementsByTagName" params="(tag)" desc="Returns a collection of objects with the specified TAGNAME " />
  320.    <method name="open" desc="Opens a document for writing " />
  321.    <method name="write" params="(text)" desc="Writes a text string to a document " />
  322.    <method name="writeln" params="(str)" desc="Writes a text string followed by a new line character to a document opened by open() " />
  323.  
  324.    <event name="onClick" desc="Executes some code when a Click event occurs  " />
  325.    <event name="onDblClick" desc="Executes some code when a Doubleclick event occurs " />
  326.    <event name="onFocus" desc="Executes some code when a Focus event occurs " />
  327.    <event name="onKeyDown" desc="Executes some code when a Keydown event occurs " />
  328.    <event name="onKeyPress" desc="Executes some code when a Keypress event occurs " />
  329.    <event name="onKeyUp" desc="Executes some code when a Keyup event occurs " />
  330.    <event name="onMouseDown" desc="Executes some code when a Mousedown event occurs " />
  331.    <event name="onMouseMove" desc="Executes some code when a Mousemove event occurs " />
  332.    <event name="onMouseOut" desc="Executes some code when a Mouseout event occurs " />
  333.    <event name="onMouseOver" desc="Executes some code when a Mouseover event occurs " />
  334.    <event name="onMouseUp" desc="Executes some code when a Mouseup event occurs " />
  335.    <event name="onResize" desc="Executes some code when a Resize event occurs " />
  336.  
  337.  </object>
  338.  
  339.  <object name="event" desc="Represents the state of an event, such as the element in which the event occurred, the state of the keyboard keys, the location of the mouse, and the state of the mouse buttons" >
  340.    <collect name="bookmarks[]" desc="Returns a collection of bookmarks connected to the rows effected by the events  " />
  341.    <collect name="boundElements[]" desc="Returns a collection of all elements on a page which are bound to a data test " />
  342.    <prop name="Abstract" desc="Returns the Abstract content in an Advanced Stream Redirector (ASX) file  " />
  343.    <prop name="altKey" desc="Sets or returns a Boolean value that indicates the state of the ALT key " />
  344.    <prop name="altLeft" desc="Returns a Boolean value that indicates the state of the left ALT key " />
  345.    <prop name="banner" desc="Returns the Banner content in an ASX file " />
  346.    <prop name="button" desc="Sets or returns the mouse button pressed by the user" />
  347.    <prop name="cancelBubble" desc="Sets or returns a Boolean value that indicates whether or not the current event should bubble up the hierarchy of event handlers " />
  348.    <prop name="clientX" desc="Sets or returns the x-coordinate of the mouse pointer - relative to the screen, excluding decorations and scroll bars " />
  349.    <prop name="clientY" desc="Sets or returns the y-coordinate of the mouse pointer - relative to the screen, excluding decorations and scroll bars " />
  350.    <prop name="contentOverflow" desc="  " />
  351.    <prop name="ctrlKey" desc="Sets or returns a Boolean value that indicates the state of the CTRL key " />
  352.    <prop name="ctrlLeft" desc="Sets or returns a Boolean value that indicates the state of the left CTRL key " />
  353.    <prop name="dataFld" desc="Sets or returns the data column affected by the oncellchange event " />
  354.    <prop name="fromElement" desc="Sets or returns the object from which activation or the mouse pointer is exiting during the event " />
  355.    <prop name="keyCode" desc="Sets or returns the UNICODE of the key pressed " />
  356.    <prop name="MoreInfo" desc="Returns the MoreInfo content in an ASX file " />
  357.    <prop name="nextPage" desc="Returns the position of the next page within a print template " />
  358.    <prop name="offsetX" desc="Sets or returns the x-coordinate of the mouse pointer relative to the object firing the event " />
  359.    <prop name="offsetY" desc="Sets or returns the y-coordinate of the mouse pointer relative to the object firing the event " />
  360.    <prop name="propertyName" desc="Sets or returns the name of the property that has changed on the object " />
  361.    <prop name="qualifier" desc="  " />
  362.    <prop name="reason" desc="Sets or returns the result of a data transfer for a data source" />
  363.    <prop name="recordset" desc="Sets or returns a reference to the default record set in a data source " />
  364.    <prop name="repeat" desc="Returns a Boolean value that indicates whether the ONKEYDOWN event is being repeated " />
  365.    <prop name="returnValue" desc="Sets or returns the return value from an event " />
  366.    <prop name="saveType" desc="Returns the clipboard type when ONCONTENTSAVE fires " />
  367.    <prop name="screenX" desc="Sets or returns the x-coordinate of the mouse pointer - relative to the screen " />
  368.    <prop name="screenY" desc="Sets or returns the y-coordinate of the mouse pointer - relative to the screen " />
  369.    <prop name="shiftKey" desc="Returns a Boolean value that indicates the state of the SHIFT key " />
  370.    <prop name="shiftLeft" desc="Returns a Boolean value that indicates the state of the left SHIFT key " />
  371.    <prop name="srcElement" desc="Sets or returns the object that fired the event " />
  372.    <prop name="srcFilter" desc="Sets or returns the filter object that fired the ONFILTERCHANGE event " />
  373.    <prop name="srcUrn" desc="Sets or returns the Universal Resource Name (URN) of the behavior that fired the event " />
  374.    <prop name="toElement" desc="Sets or returns a reference to the object toward which the user is moving the mouse pointer " />
  375.    <prop name="type" desc="Sets or returns the event name " />
  376.    <prop name="userName" desc="  " />
  377.    <prop name="wheelDelta" desc="Returns the distance and the direction the wheel button has rolled " />
  378.    <prop name="x" desc="Sets or returns the x-coordinate (in px) of the mouse pointer - relative to a relatively positioned parent element " />
  379.    <prop name="y" desc="Sets or returns the y-coordinate (in px) of the mouse pointer - relative to a relatively positioned parent element " />
  380.  </object>
  381.  
  382.  <object name="FileUpload" desc="For each instance of an HTML <input type="file"> tag on a form, a FileUpload object is created" >
  383.    <prop name="accept" desc="Sets or returns a list of content types, which the server processing this form will handle correctly  " />
  384.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the FileUpload object " />
  385.    <prop name="align" desc="Sets or returns the alignment of the FileUpload object according to the surrounding text " />
  386.    <prop name="alt" desc="Sets or returns an alternate text to display if the browser does not support <input type="file"> " />
  387.    <prop name="defaultValue" desc="Sets or returns the initial value of the FileUpload object " />
  388.    <prop name="disabled" desc="Sets or returns whether or not the FileUpload object should be disabled " />
  389.    <prop name="form" desc="Returns a reference to the form that contains the FileUpload object " />
  390.    <prop name="id" desc="Sets or returns the id of the FileUpload object (In IE 4 this property is read-only) " />
  391.    <prop name="name" desc="Sets or returns the name of the FileUpload object " />
  392.    <prop name="tabIndex" desc="Sets or returns the index that defines the tab order for the FileUpload object " />
  393.    <prop name="type" desc="Returns the type of the form element. For a FileUpload object it will be "file" " />
  394.    <prop name="value" desc="Returns the file name of the FileUpload object after the text is set by user input " />
  395.    <method name="blur" desc="Removes focus from the FileUpload object  " />
  396.    <method name="click" desc="Simulates a mouse-click on the FileUpload object " />
  397.    <method name="focus" desc="Gives focus to the FileUpload object " />
  398.    <method name="select" desc="Selects the FileUpload object " />
  399.    <event name="onBlur" desc="Executes some code when the FileUpload object loses focus  " />
  400.    <event name="onClick" desc="Executes some code when the FileUpload object gets a mouse click " />
  401.    <event name="onFocus" desc="Executes some code when the FileUpload object gets focus " />
  402.    <event name="onSelectStart" desc="Executes some code when the FileUpload object gets selected " />
  403.  
  404.  </object>
  405.  
  406.  <object name="form" desc="Forms are used to prompt users for input. Represents an HTML form element" >
  407.    <collect name="elements[]" desc="Returns an array containing each element in the form" />
  408.    <prop name="acceptCharset" desc="Sets or returns a list of character encodings for form data that must be accepted by the server processing the form  " />
  409.    <prop name="action" desc="Sets or returns the URL of where the input data will be submitted " />
  410.    <prop name="encoding" desc="Sets or returns the MIME encoding for the form " />
  411.    <prop name="enctype" desc="Sets or returns the MIME encoding for the form " />
  412.    <prop name="id" desc="Sets or returns the id of the form (In IE 4 this property is read-only) " />
  413.    <prop name="length" desc="Returns the number of elements in a form " />
  414.    <prop name="method" desc="Sets or returns how form data is submitted to the server ("get" or "post") " />
  415.    <prop name="name" desc="Sets or returns the name of the form " />
  416.    <prop name="tabIndex" desc="Sets or returns the index that defines the tab order for the form " />
  417.    <prop name="target" desc="Sets or returns the target window or frame that responses are sent to after submission of a form " />
  418.    <method name="reset" desc="Resets the default values of all elements in the form (same as clicking the Reset button)  " />
  419.    <method name="submit" desc="Submits the form (same as clicking the Submit button)" />
  420.    <event name="onReset" desc="Executes some code when a Reset event occurs  " />
  421.    <event name="onSubmit" desc="Executes some code when a Submit event occurs" />
  422.  </object>
  423.  
  424.  <object name="frame" desc="Represents an HTML frame" >
  425.    <prop name="contentDocument" desc="Returns the document the frame contains  " />
  426.    <prop name="frameBorder" desc="Sets or returns whether to display a border for the frame " />
  427.    <prop name="id" desc="Sets or returns the id of the frame (In IE 4 this property is read-only) " />
  428.    <prop name="longDesc" desc="Sets or returns a URL to a long description of the frame " />
  429.    <prop name="marginHeight" desc="Sets or returns the top and bottom margins of the frame " />
  430.    <prop name="marginWidth" desc="Sets or returns the left and right margins of the frame " />
  431.    <prop name="name" desc="Sets or returns the name of the frame " />
  432.    <prop name="noResize" desc="Sets or returns whether the frame can be resized " />
  433.    <prop name="scrolling" desc="Sets or returns whether the frame can be scrolled " />
  434.    <prop name="src" desc="Sets or returns the URL to be loaded by the frame " />
  435.    <method name="blur" desc="Removes focus from the frame  " />
  436.    <method name="focus" desc="Gives focus to the frame " />
  437.    <event name="onBlur" desc="Executes some code when the frame loses focus  " />
  438.    <event name="onFocus" desc="Executes some code when the frame gets focus " />
  439.  </object>
  440.  
  441.  <object name="frameset" desc="Represents an HTML frameset" >
  442.    <prop name="cols" desc="Sets or returns the number of columns in the frameset  " />
  443.    <prop name="id" desc="Sets or returns the id of the frameset (In IE 4 this property is read-only) " />
  444.    <prop name="rows" desc="Sets or returns the number of rows in the frameset " />
  445.    <method name="blur" desc="Removes focus from the frameset  " />
  446.    <method name="focus" desc="Gives focus to the frameset" />
  447.    <event name="onBlur" desc="Executes some code when the frameset loses focus  " />
  448.    <event name="onFocus" desc="Executes some code when the frameset gets focus" />
  449.  </object>
  450.  
  451.  <object name="hidden" desc="Represents a hidden field on an HTML form. For each instance of an HTML <input type="hidden"> tag on a form, a Hidden object is created" >
  452.    <prop name="defaultValue" desc="Sets or returns the initial value of the hidden field  " />
  453.    <prop name="form" desc="Returns a reference to the hidden field's parent form" />
  454.    <prop name="id" desc="Sets or returns the id of the hidden field (In IE 4 this property is read-only) " />
  455.    <prop name="name" desc="Sets or returns the name of the hidden field " />
  456.    <prop name="type" desc="Returns the type of the form element. For a hidden object it will always be "hidden" " />
  457.    <prop name="value" desc="Sets or returns the value of the value attribute of the hidden field " />
  458.  </object>
  459.  
  460.  <object name="history" desc="A predefined object which can be accessed through the history property of the Window object. This object consists of an array of URLs. These URLs are all the URLs the user has visited within a browser window" >
  461.    <prop name="length" desc="Returns the number of elements in the history list" />
  462.    <method name="back" desc="Loads the previous URL in the history list (same as clicking the Back button and to history.go(-1))  " />
  463.    <method name="forward" desc="Loads the next URL in the history list (same as clicking the Forward button and to history.go(1)) " />
  464.    <method name="go" params="(number|URL)" desc="Loads a specified URL from the history list " />
  465.  
  466.  </object>
  467.  
  468.  <object name="iframe" desc="Represents an HTML inline-frame" >
  469.    <prop name="align" desc="Sets or returns how to align the iframe according to the surrounding text  " />
  470.    <prop name="contentDocument" desc="Returns the document the iframe contains " />
  471.    <prop name="frameBorder" desc="Sets or returns whether to display a border for the iframe " />
  472.    <prop name="height" desc="Sets or returns the height of the iframe " />
  473.    <prop name="id" desc="Sets or returns the id of the iframe (In IE 4 this property is read-only) " />
  474.    <prop name="longDesc" desc="Sets or returns a URL to a long description of the iframe " />
  475.    <prop name="marginHeight" desc="Sets or returns the top and bottom margins of the iframe " />
  476.    <prop name="marginWidth" desc="Sets or returns the left and right margins of the frame " />
  477.    <prop name="name" desc="Sets or returns the name of the iframe " />
  478.    <prop name="scrolling" desc="Sets or returns whether the iframe can be scrolled " />
  479.    <prop name="src" desc="Sets or returns the URL to be loaded by the iframe " />
  480.    <prop name="tabIndex" desc="Sets or returns the index that defines the tab order for the iframe " />
  481.    <prop name="width" desc="Sets or returns the width of the iframe " />
  482.    <method name="blur" desc="Removes focus from the iframe  " />
  483.    <method name="focus" desc="Gives focus to the iframe" />
  484.    <event name="onBlur" desc="Executes some code when the iframe loses focus  " />
  485.    <event name="onFocus" desc="Executes some code when the iframe gets focus" />
  486.  </object>
  487.  
  488.  <object name="image" desc="Represents an HTML img element" >
  489.    <prop name="align" desc="Sets or returns how to align the image according to the surrounding text  " />
  490.    <prop name="alt" desc="Sets or returns an alternate text to write if the image cannot be displayed " />
  491.    <prop name="border" desc="Sets or returns the width of the border of the image in pixels " />
  492.    <prop name="complete" desc="Returns a Boolean value that indicates whether or not the browser is finished loading the image " />
  493.    <prop name="height" desc="Sets or returns the value of the height attribute of the <img> tag in pixels " />
  494.    <prop name="hspace" desc="Sets or returns the value of the hspace attribute of the <img> tag in pixels " />
  495.    <prop name="id" desc="Sets or returns the id of the image (In IE 4 this property is read-only) " />
  496.    <prop name="isMap" desc="Sets or returns a Boolean value that specifies if the image is a server-side image map " />
  497.    <prop name="longDesc" desc="Sets or returns a URL for a long description of the image " />
  498.    <prop name="lowsrc" desc="Sets or returns a URL to a low-resolution version of the image (for clients with low-resolution) " />
  499.    <prop name="name" desc="Sets or returns the value of the name attribute of the <img> tag " />
  500.    <prop name="src" desc="Sets or returns the URL of the image " />
  501.    <prop name="useMap" desc="Sets or returns a URL (often with a bookmark extension - #name) to use as a client-side image map " />
  502.    <prop name="vspace" desc="Sets or returns the value of the vspace attribute of the <img> tag in pixels " />
  503.    <prop name="width" desc="Sets or returns the value of the width attribute of the <img> tag in pixels " />
  504.    <method name="blur" desc="Removes focus from the image  " />
  505.    <method name="click" desc="Simulates a mouse-click on the image " />
  506.    <method name="focus" desc="Gives focus to the image" />
  507.    <event name="onAbort" desc="Executes some code when a user aborts the download of an image  " />
  508.    <event name="onBlur" desc="Executes some code when the image loses focus " />
  509.    <event name="onClick" desc="Executes some code when a user clicks on the image " />
  510.    <event name="onError" desc="Executes some code when an Error occurs " />
  511.    <event name="onFocus" desc="Executes some code when the image gets focus " />
  512.    <event name="onLoad" desc="Executes some code when the image loads " />
  513.  
  514.  </object>
  515.  
  516.  <object name="link" desc="Represents an HTML link element. The link element can only be used within the <head> tag" >
  517.    <prop name="charset" desc="Sets or returns the character set of the linked resource  " />
  518.    <prop name="disabled" desc="Sets or returns whether or not the link object should be disabled " />
  519.    <prop name="href" desc="Sets or returns the URL of the linked resource " />
  520.    <prop name="hreflang" desc="Sets or returns the language code of the linked resource " />
  521.    <prop name="id" desc="Sets or returns the id of the link (In IE 4 this property is read-only) " />
  522.    <prop name="media" desc="  " />
  523.    <prop name="name" desc="Sets or returns the name of the link object " />
  524.    <prop name="rel" desc="Sets or returns the relationship between the current document and the target URL " />
  525.    <prop name="rev" desc="Sets or returns the relationship between the current document and the target URL " />
  526.    <prop name="target" desc="Sets or returns the window/frame where to open the target URL " />
  527.    <prop name="type" desc="Sets or returns the MIME type of the linked resource " />
  528.    <event name="onLoad" desc="Executes some code after the browser loads the link object  " />
  529.  
  530.  </object>
  531.  
  532.  <object name="location" desc="Contains information about the current URL" >
  533.    <prop name="hash" desc="Sets or returns the part of the href property that follows the hash sign (#)  " />
  534.    <prop name="host" desc="Sets or returns the hostname and port number of the location or URL " />
  535.    <prop name="hostname" desc="Sets or returns the hostname of the location or URL " />
  536.    <prop name="href" desc="Sets or returns the entire URL " />
  537.    <prop name="pathname" desc="Sets or returns the file name or path specified by the location object " />
  538.    <prop name="port" desc="Sets or returns the port number associated with the URL " />
  539.    <prop name="protocol" desc="Sets or returns the protocol part of the URL " />
  540.    <prop name="search" desc="Sets or returns the part of the href property that follows the question mark (?) " />
  541.    <method name="assign" params="(URL)" desc="Loads a new document  " />
  542.    <method name="reload" desc="Reloads the current document " />
  543.    <method name="replace" params="(URL)" desc="Replaces the current document with the one specified " />
  544.  
  545.  </object>
  546.  
  547.  <object name="meta" desc="Represents an HTML meta element">
  548.    <prop name="charset" desc="Sets or returns the character set used to encode the meta object  " />
  549.    <prop name="content" desc="Sets or returns meta-information associated with httpEquiv or name " />
  550.    <prop name="disabled" desc="Sets or returns whether or not the meta object should be disabled " />
  551.    <prop name="httpEquiv" desc="Sets or returns information used to bind the content of the meta element to an HTTP response header " />
  552.    <prop name="name" desc="Sets or returns the value of the content attribute of the meta object " />
  553.    <prop name="scheme" desc="Sets or returns the scheme to be used in interpreting the value of a property for the meta object " />
  554.  
  555.  </object>
  556.  
  557.  <object name="navigator" desc="Contains information about the client browser" >
  558.    <collect name="plugins[]" desc="Returns a reference to all embedded objects in the document" />
  559.    <prop name="appCodeName" desc="Returns the code name of the browser  " />
  560.    <prop name="appMinorVersion" desc="Returns the minor version of the browser " />
  561.    <prop name="appName" desc="Returns the name of the browser " />
  562.    <prop name="appVersion" desc="Returns the platform and version of the browser " />
  563.    <prop name="browserLanguage" desc="Returns the current browser language " />
  564.    <prop name="cookieEnabled" desc="Returns a Boolean value that specifies whether cookies are enabled in the browser " />
  565.    <prop name="cpuClass" desc="Returns the CPU class of the browser's system" />
  566.    <prop name="onLine" desc="Returns a Boolean value that specifies whether the system is in offline mode " />
  567.    <prop name="platform" desc="Returns the operating system platform " />
  568.    <prop name="systemLanguage" desc="Returns the default language used by the OS " />
  569.    <prop name="userAgent" desc="Returns the value of the user-agent header sent by the client to the server " />
  570.    <prop name="userLanguage" desc="Returns the OS' natural language setting" />
  571.    <method name="javaEnabled" desc="A Boolean value that specifies whether the browser has Java enabled  " />
  572.    <method name="taintEnabled" desc="A Boolean value that specifies whether the browser has data tainting enabled " />
  573.  </object>
  574.  
  575.  <object name="object" desc="">
  576.    <prop name="align" desc="Sets or returns the alignment of the object (according to the surrounding text)  " />
  577.    <prop name="archive" desc="Sets or returns a string that can be used to implement your own archive functionality for the object " />
  578.    <prop name="border" desc="Sets or returns the width of the border around the object " />
  579.    <prop name="code" desc="Sets or returns the URL of the file that contains the compiled Java class " />
  580.    <prop name="codeBase" desc="Sets or returns the URL of the component " />
  581.    <prop name="codeType" desc="  " />
  582.    <prop name="data" desc="  " />
  583.    <prop name="declare" desc="  " />
  584.    <prop name="form" desc="Returns a reference to the object's parent form     -                 Yes" />
  585.    <prop name="height" desc="Sets or returns the height of the object " />
  586.    <prop name="hspace" desc="Sets or returns the horizontal margin of the object " />
  587.    <prop name="id" desc="Sets or returns the id of the object " />
  588.    <prop name="name" desc="Sets or returns the name of the object " />
  589.    <prop name="standby" desc="Sets or returns a message when loading the object " />
  590.    <prop name="tabIndex" desc="Sets or returns the tab order of the object " />
  591.    <prop name="type" desc="Sets or returns the content type for data downloaded via the data attribute " />
  592.    <prop name="useMap" desc="  " />
  593.    <prop name="vspace" desc="Sets or returns the vertical margin of the object " />
  594.    <prop name="width" desc="Sets or returns the width of the object " />
  595.  </object>
  596.  
  597.  <object name="option" desc="Represents an option in a selection list on an HTML form. For each instance of an HTML <option> tag in a selection list on a form, an Option object is created" >
  598.    <prop name="defaultSelected" desc="Sets or returns the value of the selected attribute of the option  " />
  599.    <prop name="disabled" desc="Sets or returns a Boolean value that specifies whether the option should be disabled " />
  600.    <prop name="form" desc="Returns a reference to the form that contains the option " />
  601.    <prop name="id" desc="Sets or returns the id of the option (In IE 4 this property is read-only) " />
  602.    <prop name="index" desc="Sets or returns the position of the option in the select box " />
  603.    <prop name="label" desc="Sets or returns a label for the option object " />
  604.    <prop name="selected" desc="Sets or returns the current state of the option " />
  605.    <prop name="text" desc="Sets or returns the text value for the <option> tag " />
  606.    <prop name="value" desc="Sets or returns the value to be returned to the server when an option is selected and the form is submitted " />
  607.    <method name="click" desc="Simulates a mouse-click on the option" />
  608.  
  609.  </object>
  610.  
  611.  <object name="password" desc="Represents an option in a selection list on an HTML form. For each instance of an HTML <option> tag in a selection list on a form, an Option object is created" >
  612.    <prop name="accept" desc="Sets or returns a list of content types, which the server processing this form will handle correctly  " />
  613.    <prop name="accesskey" desc="Sets or returns the keyboard key to access the password field " />
  614.    <prop name="defaultValue" desc="Sets or returns the initial value of the password field " />
  615.    <prop name="disabled" desc="Sets or returns whether or not the password field should be disabled " />
  616.    <prop name="form" desc="Returns a reference to the password field's parent form" />
  617.    <prop name="id" desc="Sets or returns the id of the password field (In IE 4 this property is read-only) " />
  618.    <prop name="maxLength" desc="Sets or returns the maximum number of characters the user can enter in the password field " />
  619.    <prop name="name" desc="Sets or returns the name of the password field " />
  620.    <prop name="readOnly" desc="Sets or returns whether the content of the password field is read-only " />
  621.    <prop name="size" desc="Sets or returns the size of the password field " />
  622.    <prop name="tabIndex" desc="Sets or returns the index that defines the tab order for the password field " />
  623.    <prop name="type" desc="The type of the form element. For a password object it will always be "password" " />
  624.    <prop name="value" desc="Sets or returns the value of the value attribute of the password field " />
  625.    <method name="blur" desc="Removes focus from the password field  " />
  626.    <method name="click" desc="Simulates a mouse-click on the password field " />
  627.    <method name="focus" desc="Sets focus on the password field " />
  628.    <method name="select" desc="Selects and highlights the entire text that is in the password field " />
  629.    <event name="onBlur" desc="Executes some code when the password field loses focus  " />
  630.    <event name="onClick" desc="Executes some code when the user clicks in the password field " />
  631.    <event name="onFocus" desc="Executes some code when the password field gets focus " />
  632.    <event name="onKeyDown" desc="Executes some code when a key is pressed down in the password field " />
  633.    <event name="onKeyPress" desc="Executes some code when an alphanumeric key is pressed in the password field " />
  634.    <event name="onKeyUp" desc="Executes some code when a key is released in the password field " />
  635.    <event name="onSelectStart" desc="Executes some code when some text in the password field is selected" />
  636.  </object>
  637.  
  638.  <object name="radio" desc="Represents radio buttons on an HTML form. For each instance of an HTML <input type="radio"> tag on a form, a Radio object is created" >
  639.    <prop name="accept" desc="Sets or returns a list of content types, which the server processing this form will handle correctly  " />
  640.    <prop name="accesskey" desc="Sets or returns the keyboard key to access the radio button " />
  641.    <prop name="align" desc="Sets or returns the alignment of the radio button according to the surrounding text " />
  642.    <prop name="alt" desc="Sets or returns an alternate text to display if the browser does not support radio buttons " />
  643.    <prop name="checked" desc="Sets or returns the current state of the radio button (true if selected and false if not selected) " />
  644.    <prop name="defaultChecked" desc="Sets or returns the default value of the checked attribute (true if checked by default and false if not) " />
  645.    <prop name="disabled" desc="Sets or returns whether or not the radio button should be disabled " />
  646.    <prop name="form" desc="Returns a reference to the radio button's parent form" />
  647.    <prop name="id" desc="Sets or returns the id of the radio button (In IE 4 this property is read-only) " />
  648.    <prop name="name" desc="Sets or returns the name of the radio button " />
  649.    <prop name="size" desc="Sets or returns the size of the radio button " />
  650.    <prop name="tabIndex" desc="Sets or returns the tab order for the radio button " />
  651.    <prop name="type" desc="The type of the form element. For a radio object it will always be "radio" " />
  652.    <prop name="value" desc="Sets or returns the value of the value attribute of the radio button " />
  653.    <method name="blur" desc="Removes focus from the radio button  " />
  654.    <method name="click" desc="Simulates a mouse-click on the radio button " />
  655.    <method name="focus" desc="Sets focus on the radio button " />
  656.    <method name="select" desc="Selects the radio button " />
  657.    <event name="onBlur" desc="Executes some code when the radio button loses focus  " />
  658.    <event name="onClick" desc="Executes some code when the user clicks on the radio button " />
  659.    <event name="onFocus" desc="Executes some code when the radio button gets focus " />
  660.    <event name="onSelectStart" desc="Executes some code when the radio button is selected " />
  661.  </object>
  662.  
  663.  <object name="reset" desc="Represents a reset button on an HTML form. For each instance of an HTML <input type="reset"> tag on a form, a Reset object is created" >
  664.    <prop name="accept" desc="Sets or returns a list of content types, which the server processing this form will handle correctly  " />
  665.    <prop name="accesskey" desc="Sets or returns the keyboard key to access the reset button " />
  666.    <prop name="align" desc="Sets or returns the alignment of the reset button according to the surrounding text " />
  667.    <prop name="alt" desc="Sets or returns an alternate text to display if the browser does not support reset buttons " />
  668.    <prop name="defaultValue" desc="Sets or returns the default value of the reset button " />
  669.    <prop name="disabled" desc="Sets or returns whether or not the reset button should be disabled " />
  670.    <prop name="form" desc="Returns a reference to the reset button's parent form" />
  671.    <prop name="id" desc="Sets or returns the id of the reset button (In IE 4 this property is read-only) " />
  672.    <prop name="name" desc="Sets or returns the name of the reset button " />
  673.    <prop name="size" desc="Sets or returns the size of the reset button " />
  674.    <prop name="tabIndex" desc="Sets or returns the tab order for the reset button " />
  675.    <prop name="type" desc="Returns the type of the form element. For a reset object it will always be "reset" " />
  676.    <prop name="value" desc="Sets or returns the value of the value attribute of the reset button" />
  677.    <method name="blur" desc="Removes focus from the reset button  " />
  678.    <method name="click" desc="Simulates a mouse-click on the reset button " />
  679.    <method name="focus" desc="Sets focus on the reset button " />
  680.    <method name="select" desc="Selects the reset button " />
  681.    <event name="onBlur" desc="Executes some code when the reset button loses focus  " />
  682.    <event name="onClick" desc="Executes some code when the user clicks on the reset button " />
  683.    <event name="onFocus" desc="Executes some code when the reset button gets focus " />
  684.    <event name="onSelectStart" desc="Executes some code when the reset button is selected " />
  685.  
  686.  
  687.  </object>
  688.  
  689.  <object name="screen" desc="Automatically created by the JavaScript runtime engine and it contains information about the client's display screen" >
  690.    <prop name="availHeight" desc="Returns the height of the display screen - excluding the Windows Taskbar  " />
  691.    <prop name="availWidth" desc="Returns the width of the display screen - excluding the Windows Taskbar " />
  692.    <prop name="bufferDepth" desc="Sets or returns the bit depth of the color palette in the off-screen bitmap buffer " />
  693.    <prop name="colorDepth" desc="Returns the bit depth of the color palette on the destination device or buffer " />
  694.    <prop name="deviceXDPI" desc="Returns the number of horizontal dots per inch of the display screen " />
  695.    <prop name="deviceYDPI" desc="Returns the number of vertical dots per inch of the display screen " />
  696.    <prop name="fontSmoothingEnabled" desc="Returns whether the user has enabled font smoothing in the display control panel " />
  697.    <prop name="height" desc="The height of the display screen " />
  698.    <prop name="logicalXDPI" desc="Returns the normal number of horizontal dots per inch of the display screen " />
  699.    <prop name="logicalYDPI" desc="Returns the normal number of vertical dots per inch of the display screen " />
  700.    <prop name="pixelDepth" desc="Returns the color resolution (in bits per pixel) of the display screen " />
  701.    <prop name="updateInterval" desc="Sets or returns the update interval for the screen " />
  702.    <prop name="width" desc="Returns width of the display screen " />
  703.  </object>
  704.  
  705.  <object name="select" desc="Represents a selection list on an HTML form. For each instance of an HTML <select> tag on a form, a Select object is created" >
  706.    <collect name="options[]" desc="Returns an array of all the options in a dropdown list  " />
  707.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the dropdown list  " />
  708.    <prop name="align" desc="Sets or returns the alignment of the dropdown list according to the surrounding text " />
  709.    <prop name="disabled" desc="Sets or returns whether or not the dropdown list should be disabled " />
  710.    <prop name="form" desc="Returns a reference to the dropdown list's parent form     3     1     2     Yes" />
  711.    <prop name="id" desc="Sets or returns the id of the dropdown list (In IE 4 this property is read-only) " />
  712.    <prop name="length" desc="Sets or returns the number of options in the dropdown list " />
  713.    <prop name="multiple" desc="Sets or returns a Boolean value that indicates whether or not multiple items can be selected " />
  714.    <prop name="name" desc="Sets or returns the name of the dropdown list " />
  715.    <prop name="selectedIndex" desc="Sets or returns the index of the selected option in the dropdown list " />
  716.    <prop name="size" desc="Sets or returns the number of rows in the dropdown list " />
  717.    <prop name="tabIndex" desc="Sets or returns the tab order for the dropdown list " />
  718.    <prop name="type" desc="Returns the type of the form element. For a dropdown list it will be "select-one" or "select-multiple" " />
  719.    <prop name="value" desc="Sets or returns the value to be returned to the server when the form is submitted " />
  720.    <method name="add" desc="Adds an option to the dropdown list  " />
  721.    <method name="blur" desc="Removes focus from the dropdown list " />
  722.    <method name="focus" desc="Sets focus on the dropdown list " />
  723.    <method name="remove" params="(index)" desc="Removes an option from the dropdown list " />
  724.    <event name="onBlur" desc="Executes some code when the dropdown list loses focus  " />
  725.    <event name="onChange" desc="Executes some code when the dropdown list loses focus and its value has altered " />
  726.    <event name="onClick" desc="Executes some code when the user clicks the left mouse button in the dropdown list " />
  727.    <event name="onFocus" desc="Executes some code when the dropdown list gets focus " />
  728.  </object>
  729.  
  730.  <object name="style" desc="Represents an individual style statement. This object can be accessed from the document or from the elements to which that style is applied" >
  731.    <prop name="background" desc="Sets or returns all background properties in one  " />
  732.    <prop name="backgroundAttachment" desc="Sets or returns whether a background image is fixed or scrolls with the rest of the page " />
  733.    <prop name="backgroundColor" desc="Sets or returns the background color of the element " />
  734.    <prop name="backgroundImage" desc="Sets or returns the background image of the element " />
  735.    <prop name="backgroundPosition" desc="Sets or returns the starting position of the background image " />
  736.    <prop name="backgroundPositionX" desc="Sets or returns the x-coordinates of the backgroundPosition property " />
  737.    <prop name="backgroundPositionY" desc="Sets or returns the y-coordinates of the backgroundPosition property " />
  738.    <prop name="backgroundRepeat" desc="Sets or returns if/how a background image will be repeated " />
  739.    <prop name="border" desc="Sets or returns all properties for the four borders in one  " />
  740.    <prop name="borderBottom" desc="Sets or returns all properties for the bottom border in one " />
  741.    <prop name="borderLeft" desc="Sets or returns all property for the left border in one " />
  742.    <prop name="borderRight" desc="Sets or returns all property for the right border in one " />
  743.    <prop name="borderTop" desc="Sets or returns all property for the top border in one " />
  744.    <prop name="borderBottomColor" desc="Sets or returns the color of the bottom border " />
  745.    <prop name="borderLeftColor" desc="Sets or returns the color of the left border " />
  746.    <prop name="borderRightColor" desc="Sets or returns the color of the right border " />
  747.    <prop name="borderTopColor" desc="Sets or returns the color of the top border " />
  748.    <prop name="borderBottomStyle" desc="Sets or returns the style of the bottom border " />
  749.    <prop name="borderLeftStyle" desc="Sets or returns the style of the left border " />
  750.    <prop name="borderRightStyle" desc="Sets or returns the style of the right border " />
  751.    <prop name="borderTopStyle" desc="Sets or returns the style of the top border " />
  752.    <prop name="borderBottomWidth" desc="Sets or returns the width of the bottom border " />
  753.    <prop name="borderLeftWidth" desc="Sets or returns the width of the left border " />
  754.    <prop name="borderRightWidth" desc="Sets or returns the width of the right border " />
  755.    <prop name="borderTopWidth" desc="Sets or returns the width of the top border " />
  756.    <prop name="borderColor" desc="Sets or returns the color of all four borders (can have up to four colors) " />
  757.    <prop name="borderStyle" desc="Sets or returns the style of all four borders " />
  758.    <prop name="borderWidth" desc="Sets or returns the width of all four borders " />
  759.    <prop name="margin" desc="Sets or returns the top, right, bottom, and left margins of the element " />
  760.    <prop name="marginBottom" desc="Sets or returns the bottom margin of the element " />
  761.    <prop name="marginLeft" desc="Sets or returns the left margin of the element " />
  762.    <prop name="marginRight" desc="Sets or returns the right margin of the element " />
  763.    <prop name="marginTop" desc="Sets or returns the top margin of the element " />
  764.    <prop name="outline" desc="Sets or returns the color, style, and width of the outline around the element " />
  765.    <prop name="outlineColor" desc="Sets or returns the color of the outline around the element " />
  766.    <prop name="outlineStyle" desc="Sets or returns the style of the outline around the element " />
  767.    <prop name="outlineWidth" desc="Sets or returns the width of the outline around the element " />
  768.    <prop name="padding" desc="Sets or returns the top, right, bottom, and left padding of the element " />
  769.    <prop name="paddingBottom" desc="Sets or returns the bottom padding of the element " />
  770.    <prop name="paddingLeft" desc="Sets or returns the left padding of the element " />
  771.    <prop name="paddingRight" desc="Sets or returns the right padding of the element " />
  772.    <prop name="paddingTop" desc="Sets or returns the top padding of the element " />
  773.    <prop name="clear" desc="Sets or returns which sides of an element other floating elements are not allowed  " />
  774.    <prop name="clip" desc="Sets or returns the shape of an element. What if an image is larger than the element it goes inside? - This property lets you specify the dimensions of an element that should be visible, and the element is clipped into this shape, and displayed " />
  775.    <prop name="clipBottom" desc="Returns the bottom coordinate of the clipping region " />
  776.    <prop name="clipLeft" desc="Returns the left coordinate of the clipping region " />
  777.    <prop name="clipRight" desc="Returns the right coordinate of the clipping region " />
  778.    <prop name="clipTop" desc="Returns the top coordinate of the clipping region " />
  779.    <prop name="content" desc="Sets or returns meta-information " />
  780.    <prop name="cursor" desc="Sets or returns the type of cursor to be displayed when the mouse pointer moves over the element " />
  781.    <prop name="direction" desc="Sets or returns the reading order " />
  782.    <prop name="display" desc="Sets or returns how/if an element is displayed " />
  783.    <prop name="filter" desc="Sets or returns the filter/filters applied to the element " />
  784.    <prop name="layoutGrid" desc="  " />
  785.    <prop name="layoutGridChar" desc="  " />
  786.    <prop name="layoutGridLine" desc="  " />
  787.    <prop name="layoutGridMode" desc="  " />
  788.    <prop name="layoutGridType" desc="  " />
  789.    <prop name="markerOffset" desc="  " />
  790.    <prop name="marks" desc="  " />
  791.    <prop name="maxHeight" desc="  " />
  792.    <prop name="maxWidth" desc="  " />
  793.    <prop name="minHeight" desc="  " />
  794.    <prop name="minWidth" desc="  " />
  795.    <prop name="MozOpacity" desc="  " />
  796.    <prop name="overflow" desc="  " />
  797.    <prop name="overflowX" desc="  " />
  798.    <prop name="overflowY" desc="  " />
  799.    <prop name="styleFloat" desc="  " />
  800.    <prop name="verticalAlign" desc="  " />
  801.    <prop name="visibility" desc="  " />
  802.    <prop name="width" desc="  " />
  803.    <prop name="zoom" desc="  " />
  804.    <prop name="listStyle" desc="Sets or returns all the properties for a list in one  " />
  805.    <prop name="listStyleImage" desc="Sets or returns the value of the image that is the list-item marker " />
  806.    <prop name="listStylePosition" desc="Sets or returns where the list-item marker is placed in the list " />
  807.    <prop name="listStyleType" desc="Sets or returns the type of the list-item marker " />
  808.    <prop name="accelerator" desc="Sets or returns a Boolean value indicating whether the element contains an accelerator key  " />
  809.    <prop name="behavior" desc="  " />
  810.    <prop name="cssText" desc="  " />
  811.    <prop name="imeMode" desc="  " />
  812.    <prop name="bottom" desc="   " />
  813.    <prop name="height" desc="  " />
  814.    <prop name="left" desc="  " />
  815.    <prop name="pixelBottom" desc="  " />
  816.    <prop name="pixelHeight" desc="  " />
  817.    <prop name="pixelLeft" desc="  " />
  818.    <prop name="pixelRight" desc="  " />
  819.    <prop name="pixelTop" desc="  " />
  820.    <prop name="pixelWidth" desc="  " />
  821.    <prop name="posBottom" desc="  " />
  822.    <prop name="posHeight" desc="  " />
  823.    <prop name="posLeft" desc="  " />
  824.    <prop name="posRight" desc="  " />
  825.    <prop name="posTop" desc="  " />
  826.    <prop name="posWidth" desc="  " />
  827.    <prop name="position" desc="  " />
  828.    <prop name="right" desc="  " />
  829.    <prop name="top" desc="  " />
  830.    <prop name="width" desc="  " />
  831.    <prop name="zIndex" desc="  " />
  832.    <prop name="orphans" desc="   " />
  833.    <prop name="widows" desc="  " />
  834.    <prop name="page" desc="  " />
  835.    <prop name="pageBreakAfter" desc="  " />
  836.    <prop name="pageBreakBefore" desc="  " />
  837.    <prop name="pageBreakInside" desc="  " />
  838.    <prop name="size" desc=" " />
  839.    <prop name="scrollbar3dLightColor" desc="   " />
  840.    <prop name="scrollbarArrowColor" desc="  " />
  841.    <prop name="scrollbarBaseColor" desc="  " />
  842.    <prop name="scrollbarDarkShadowColor" desc="  " />
  843.    <prop name="scrollbarFaceColor" desc="  " />
  844.    <prop name="scrollbarHighlightColor" desc="  " />
  845.    <prop name="scrollbarShadowColor" desc="  " />
  846.    <prop name="scrollbarTrackColor" desc="  " />
  847.    <prop name="borderCollapse" desc="   " />
  848.    <prop name="borderSpacing" desc="  " />
  849.    <prop name="captionSide" desc="  " />
  850.    <prop name="emptyCells" desc="  " />
  851.    <prop name="tableLayout" desc=" " />
  852.    <prop name="color" desc="   " />
  853.    <prop name="font" desc="  " />
  854.    <prop name="fontFamily" desc="  " />
  855.    <prop name="fontSize" desc="  " />
  856.    <prop name="fontSizeAdjust" desc="  " />
  857.    <prop name="fontStretch" desc="  " />
  858.    <prop name="fontStyle" desc="  " />
  859.    <prop name="fontVariant" desc="  " />
  860.    <prop name="fontWeight" desc="  " />
  861.    <prop name="letterSpacing" desc="  " />
  862.    <prop name="lineBreak" desc="  " />
  863.    <prop name="lineHeight" desc="  " />
  864.    <prop name="quotes" desc="  " />
  865.    <prop name="rubyAlign" desc="  " />
  866.    <prop name="rubyOverhang" desc="  " />
  867.    <prop name="rubyPosition" desc="  " />
  868.    <prop name="textAlign" desc="  " />
  869.    <prop name="textAlignLast" desc="  " />
  870.    <prop name="textAutospace" desc="  " />
  871.    <prop name="textDecoration" desc="  " />
  872.    <prop name="textDecorationBlink" desc="  " />
  873.    <prop name="textDecorationLineThrough" desc="  " />
  874.    <prop name="textDecorationLineNone" desc="  " />
  875.    <prop name="textDecorationLineOverline" desc="  " />
  876.    <prop name="textDecorationLineUnderline" desc="  " />
  877.    <prop name="textIndent" desc="  " />
  878.    <prop name="textJustify" desc="  " />
  879.    <prop name="textJustifyTrim" desc="  " />
  880.    <prop name="textKashidaSpace" desc="  " />
  881.    <prop name="textOverflow" desc="  " />
  882.    <prop name="textShadow" desc="  " />
  883.    <prop name="textTransform" desc="  " />
  884.    <prop name="textUnderlinePosition" desc="  " />
  885.    <prop name="unicodeBidi" desc="  " />
  886.    <prop name="whiteSpace" desc="  " />
  887.    <prop name="wordBreak" desc="  " />
  888.    <prop name="wordSpacing" desc="  " />
  889.    <prop name="wordWrap" desc="  " />
  890.    <prop name="writingMode" desc="  " />
  891.  
  892.  </object>
  893.  
  894.  <object name="submit" desc="Represents a submit button on an HTML form. For each instance of an HTML <input type="submit"> tag on a form, a Submit object is created" >
  895.    <prop name="accept" desc="Sets or returns a list of content types, which the server processing this form will handle correctly  " />
  896.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the submit button " />
  897.    <prop name="align" desc="Sets or returns the alignment of the submit button according to the surrounding text " />
  898.    <prop name="alt" desc="Sets or returns an alternate text to display if the browser does not support submit buttons " />
  899.    <prop name="defaultValue" desc="Sets or returns the default value of the submit button " />
  900.    <prop name="disabled" desc="Sets or returns whether or not the submit button should be disabled " />
  901.    <prop name="form" desc="Returns a reference to the submit button's parent form" />
  902.    <prop name="id" desc="Sets or returns the id of the submit button (In IE 4 this property is read-only) " />
  903.    <prop name="name" desc="Sets or returns the name of the submit button " />
  904.    <prop name="size" desc="Sets or returns the size of the submit button " />
  905.    <prop name="tabIndex" desc="Sets or returns the tab order for the submit button " />
  906.    <prop name="type" desc="Returns the type of the form element. For a submit object it will always be "submit" " />
  907.    <prop name="value" desc="Sets or returns the value of the value attribute of the submit button " />
  908.    <method name="blur" desc="Removes focus from the submit button  " />
  909.    <method name="click" desc="Simulates a mouse-click on the submit button " />
  910.    <method name="focus" desc="Sets focus on the submit button " />
  911.    <method name="select" desc="Selects the submit button " />
  912.    <event name="onBlur" desc="Executes some code when the submit button loses focus  " />
  913.    <event name="onClick" desc="Executes some code when the user clicks on the submit button " />
  914.    <event name="onFocus" desc="Executes some code when the submit button gets focus " />
  915.    <event name="onSelectStart" desc="Executes some code when the submit button is selected" />
  916.  
  917.  
  918.  </object>
  919.  
  920.  <object name="table" desc="Represents an HTML table element" >
  921.    <collect name="cells[]" desc="Returns an array containing each cell in the table  " />
  922.    <collect name="rows[]" desc="Returns an array containing each row in the table " />
  923.    <collect name="tBodies[]" desc="Returns an array containing each tbody the table " />
  924.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the table  " />
  925.    <prop name="align" desc="Sets or returns the alignment of the table according to the surrounding text " />
  926.    <prop name="background" desc="Sets or returns the background image of the table " />
  927.    <prop name="bgColor" desc="Sets or returns the background color of the table " />
  928.    <prop name="border" desc="Sets or returns the width of the table border " />
  929.    <prop name="borderColor" desc="Sets or returns the color of the table border " />
  930.    <prop name="caption" desc="Sets or returns the caption of the table " />
  931.    <prop name="cellPadding" desc="Sets or returns the amount of space between the cell border and cell content " />
  932.    <prop name="cellSpacing" desc="Sets or returns the amount of space between cells in the table " />
  933.    <prop name="cols" desc="Sets or returns the number of columns in the table " />
  934.    <prop name="disabled" desc="Sets or returns whether or not the table should be disabled " />
  935.    <prop name="frame" desc="Sets or returns which borders to render around the table " />
  936.    <prop name="height" desc="Sets or returns the height of the table " />
  937.    <prop name="id" desc="Sets or returns the id of the table (In IE 4 this property is read-only) " />
  938.    <prop name="rules" desc="Sets or returns which inner-borders to display in a table " />
  939.    <prop name="summary" desc="Sets or returns a description of the table " />
  940.    <prop name="tabIndex" desc="Sets or returns the tab order for the table " />
  941.    <prop name="tFoot" desc="Returns the TFoot object of the table " />
  942.    <prop name="tHead" desc="Returns the THead object of the table " />
  943.    <prop name="width" desc="Sets or returns the width of the table " />
  944.    <method name="blur" desc="Removes focus from the table  " />
  945.    <method name="click" desc="Simulates a mouse-click on the table " />
  946.    <method name="createCaption" desc="Creates an empty caption element in the table " />
  947.    <method name="createTFoot" desc="Creates an empty tFoot element in the table " />
  948.    <method name="createTHead" desc="Creates an empty tHead element in the table " />
  949.    <method name="deleteCaption" desc="Deletes the caption element and its content from the table " />
  950.    <method name="deleteRow" desc="Deletes a specified row from the table " />
  951.    <method name="deleteTFoot" desc="Deletes the tFoot element and its content from the table " />
  952.    <method name="deleteTHead" desc="Deletes the tHead element and its content from the table " />
  953.    <method name="focus" desc="Sets focus on the table " />
  954.    <method name="insertRow" desc="Inserts a new row in the table " />
  955.    <method name="moveRow" params="(from,to)" desc="Moves a row to a new position " />
  956.    <method name="refresh" desc="Refreshes the content of the table " />
  957.    <event name="onBlur" desc="Executes some code when the table loses focus  " />
  958.    <event name="onClick" desc="Executes some code when the user clicks on the table " />
  959.    <event name="onFocus" desc="Executes some code when the table gets focus " />
  960.    <event name="onSelectStart" desc="Executes some code when the table is selected " />
  961.  
  962.  </object>
  963.  
  964.  <object name="TableData" desc="Represents an HTML td element" >
  965.    <prop name="abbr" desc="Sets or returns an abbreviated text for the table cell (for non-visual media such as speech or Braille)  " />
  966.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the table cell " />
  967.    <prop name="align" desc="Sets or returns the horizontal alignment of data within the table cell " />
  968.    <prop name="axis" desc="Sets or returns a comma-delimited list of related table cells (categories) " />
  969.    <prop name="background" desc="Sets or returns the background image for the table cell " />
  970.    <prop name="bgColor" desc="Sets or returns the background color for the table cell " />
  971.    <prop name="borderColor" desc="Sets or returns the border color of the table cell " />
  972.    <prop name="cellIndex" desc="Returns the position of the cell in the cells collection of a row " />
  973.    <prop name="ch" desc="Sets or returns the alignment character for the table cell " />
  974.    <prop name="chOff" desc="Sets or returns the offset of alignment character for the table cell " />
  975.    <prop name="colSpan" desc="Sets or returns the number of columns the table cell should span " />
  976.    <prop name="disabled" desc="Sets or returns whether or not the table cell should be disabled " />
  977.    <prop name="headers" desc="Sets or returns a list of space-separated header cell ids " />
  978.    <prop name="height" desc="Sets or returns the height of the table cell " />
  979.    <prop name="id" desc="Sets or returns the id of the table cell (In IE 4 this property is read-only) " />
  980.    <prop name="innerHTML" desc="Sets or returns the HTML between the start and end tags of the table cell " />
  981.    <prop name="innerText" desc="Sets or returns the text between the start and end tags of the table cell " />
  982.    <prop name="noWrap" desc="Sets or returns a Boolean value indicating whether or not the browser automatically performs word wrap in the table cell " />
  983.    <prop name="outerHTML" desc="Sets or returns the table data object and its content in HTML " />
  984.    <prop name="outerText" desc="Sets or returns the text of the table data object " />
  985.    <prop name="rowSpan" desc="Sets or returns the number of rows the table cell should span " />
  986.    <prop name="scope" desc="  " />
  987.    <prop name="tabIndex" desc="Sets or returns the tab order for the table cell " />
  988.    <prop name="vAlign" desc="Sets or returns how cell content are vertically aligned " />
  989.    <prop name="width" desc="Sets or returns the width of the table cell " />
  990.    <method name="blur" desc="Removes focus from the table cell  " />
  991.    <method name="click" desc="Simulates a mouse-click on the table cell " />
  992.    <method name="focus" desc="Sets focus on the table cell " />
  993.    <event name="onBlur" desc="Executes some code when the table cell loses focus  " />
  994.    <event name="onClick" desc="Executes some code when the user clicks on the table cell " />
  995.    <event name="onFocus" desc="Executes some code when the table cell gets focus " />
  996.    <event name="onSelectStart" desc="Executes some code when the table cell is selected " />
  997.  </object>
  998.  
  999.  <object name="TableHeader" desc="Represents an HTML th element" >
  1000.    <prop name="abbr" desc="Sets or returns an abbreviated text for the table header cell (for non-visual media such as speech or Braille)  " />
  1001.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the table header cell " />
  1002.    <prop name="align" desc="Sets or returns the horizontal alignment of data within the table header cell " />
  1003.    <prop name="axis" desc="Sets or returns a comma-delimited list of related table header cells (categories) " />
  1004.    <prop name="background" desc="Sets or returns the background image for the table header cell " />
  1005.    <prop name="bgColor" desc="Sets or returns the background color for the table header cell " />
  1006.    <prop name="borderColor" desc="Sets or returns the border color of the table header cell " />
  1007.    <prop name="cellIndex" desc="Returns the position of the cell in the cells collection of a row " />
  1008.    <prop name="ch" desc="Sets or returns the alignment character for the table header cell " />
  1009.    <prop name="chOff" desc="Sets or returns the offset of alignment character for the table header cell " />
  1010.    <prop name="colSpan" desc="Sets or returns the number of columns the table header cell should span " />
  1011.    <prop name="headers" desc="Sets or returns a list of space-separated header cell ids " />
  1012.    <prop name="height" desc="Sets or returns the height of the table header cell " />
  1013.    <prop name="id" desc="Sets or returns the id of the table header cell (In IE 4 this property is read-only) " />
  1014.    <prop name="innerHTML" desc="Sets or returns the HTML between the start and end tags of the table header cell " />
  1015.    <prop name="innerText" desc="Sets or returns the text between the start and end tags of the table header cell " />
  1016.    <prop name="noWrap" desc="Sets or returns a Boolean value indicating whether or not the browser automatically performs word wrap in the table header cell " />
  1017.    <prop name="outerHTML" desc="Sets or returns the table header object and its content in HTML " />
  1018.    <prop name="outerText" desc="Sets or returns the text of the table header object " />
  1019.    <prop name="rowSpan" desc="Sets or returns the number of rows the table header cell should span " />
  1020.    <prop name="scope" desc="  " />
  1021.    <prop name="tabIndex" desc="Sets or returns the tab order for the table header cell " />
  1022.    <prop name="vAlign" desc="Sets or returns how header cell content are vertically aligned " />
  1023.    <prop name="width" desc="Sets or returns the width of the table header cell " />
  1024.    <method name="blur" desc="Removes focus from the table header cell" />
  1025.    <method name="click" desc="Simulates a mouse-click on the table header cell" />
  1026.    <method name="focus" desc="Sets focus on the table header cell " />
  1027.    <event name="onBlur" desc="Executes some code when the table header cell loses focus  " />
  1028.    <event name="onClick" desc="Executes some code when the user clicks on the table headercell " />
  1029.    <event name="onFocus" desc="Executes some code when the table header cell gets focus " />
  1030.    <event name="onSelectStart" desc="Executes some code when the table header cell is selected " />
  1031.  </object>
  1032.  
  1033.  <object name="TableRow" desc="Represents an HTML tr element" >
  1034.   <collect name="cells[]" desc="Returns an array containing each column in the table row" />
  1035.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the table row  " />
  1036.    <prop name="align" desc="Sets or returns the horizontal alignment of data within cells of the table row " />
  1037.    <prop name="bgColor" desc="Sets or returns the background color for the table row " />
  1038.    <prop name="borderColor" desc="Sets or returns the border color of the table row " />
  1039.    <prop name="ch" desc="Sets or returns the alignment character for cells in the table row " />
  1040.    <prop name="chOff" desc="Sets or returns the offset of alignment character for cells in the table row " />
  1041.    <prop name="disabled" desc="Sets or returns whether or not the table row should be disabled " />
  1042.    <prop name="height" desc="Sets or returns the height of the table row " />
  1043.    <prop name="id" desc="Sets or returns the id of the table row (In IE 4 this property is read-only) " />
  1044.    <prop name="innerHTML" desc="Sets or returns the HTML between the start and end tags of the table row " />
  1045.    <prop name="innerText" desc="Sets or returns the text between the start and end tags of the table row " />
  1046.    <prop name="outerHTML" desc="Sets or returns the table row object and its content in HTML " />
  1047.    <prop name="outerText" desc="Sets or returns the text of the table row object " />
  1048.    <prop name="rowIndex" desc="Returns the table row object's position in the rows collection for the table" />
  1049.    <prop name="sectionRowIndex" desc="Returns the table rows object's position in the tBody, tHead, or tFoot rows collection" />
  1050.    <prop name="tabIndex" desc="Sets or returns the tab order for the table row " />
  1051.    <prop name="vAlign" desc="Sets or returns how cell content are vertically aligned within the table row " />
  1052.    <prop name="width" desc="Sets or returns the width of the table row " />
  1053.    <method name="blur" desc="Removes focus from the table row  " />
  1054.    <method name="click" desc="Simulates a mouse-click on the table row " />
  1055.    <method name="deleteCell" desc="Deletes a cell in the table row " />
  1056.    <method name="focus" desc="Sets focus on the table row " />
  1057.    <method name="insertCell" desc="Inserts a new table cell in the table row " />
  1058.    <event name="onBlur" desc="Executes some code when the table row loses focus  " />
  1059.    <event name="onClick" desc="Executes some code when the user clicks on the table row " />
  1060.    <event name="onFocus" desc="Executes some code when the table row gets focus " />
  1061.    <event name="onSelectStart" desc="Executes some code when the table row is selected " />
  1062.  </object>
  1063.  
  1064.  <object name="text" desc="Represents a text field on an HTML form. For each instance of an HTML <input type="text"> tag on a form, a Text object is created" >
  1065.    <prop name="accept" desc="Sets or returns a list of content types, which the server processing this form will handle correctly  " />
  1066.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the text field " />
  1067.    <prop name="align" desc="Sets or returns the alignment of the text field according to the surrounding text " />
  1068.    <prop name="alt" desc="Sets or returns an alternate text to display if the browser does not support text fields " />
  1069.    <prop name="defaultValue" desc="Sets or returns the initial value of the text field " />
  1070.    <prop name="disabled" desc="Sets or returns whether or not the text field should be disabled " />
  1071.    <prop name="form" desc="Returns a reference to the text field's parent form" />
  1072.    <prop name="id" desc="Sets or returns the id of the text field (In IE 4 this property is read-only) " />
  1073.    <prop name="maxLength" desc="Sets or returns the maximum number of characters in the text field " />
  1074.    <prop name="name" desc="Sets or returns the name of the text field " />
  1075.    <prop name="readOnly" desc="Sets or returns whether or not the text field should be read-only " />
  1076.    <prop name="size" desc="Sets or returns the size of the text field " />
  1077.    <prop name="tabIndex" desc="Sets or returns the tab order for the text field " />
  1078.    <prop name="type" desc="Returns the type of the form element. For a text object it will always be "text" " />
  1079.    <prop name="value" desc="Sets or returns the value of the value attribute of the text field" />
  1080.    <method name="blur()" desc="Removes focus from the text field  " />
  1081.    <method name="click()" desc="Simulates a mouse-click in the text field " />
  1082.    <method name="focus()" desc="Sets focus on the text field " />
  1083.    <method name="select()" desc="Selects the content of the text field " />
  1084.    <event name="onBlur" desc="Executes some code when the text field loses focus  " />
  1085.    <event name="onChange" desc="Executes some code when the text field loses focus and its value has altered " />
  1086.    <event name="onClick" desc="Executes some code when the user clicks the left mouse button in the text field " />
  1087.    <event name="onFocus" desc="Executes some code when the text field gets focus " />
  1088.    <event name="onKeyDown" desc="Executes some code when a key is pressed in the text field " />
  1089.    <event name="onKeyPress" desc="Executes some code when an alphanumeric key is pressed in the text field " />
  1090.    <event name="onKeyUp" desc="Executes some code when a key is released in the text field " />
  1091.    <event name="onSelect" desc="Executes some code when the current selection is changed in the text field " />
  1092.    <event name="onSelectStart" desc="Executes some code when some text in the text field is selected" />
  1093.  
  1094.  </object>
  1095.  
  1096.  <object name="textarea" desc="Represents an HTML textarea element" >
  1097.    <prop name="accessKey" desc="Sets or returns the keyboard key to access the textarea  " />
  1098.    <prop name="cols" desc="Sets or returns the width (in characters) of the textarea " />
  1099.    <prop name="defaultValue" desc="Sets or returns the initial contents of the textarea " />
  1100.    <prop name="disabled" desc="Sets or returns whether or not the textarea should be disabled " />
  1101.    <prop name="form" desc="Returns a reference to the textarea's parent form" />
  1102.    <prop name="id" desc="Sets or returns the id of the textarea (In IE 4 this property is read-only) " />
  1103.    <prop name="name" desc="Sets or returns the name of the textarea " />
  1104.    <prop name="readOnly" desc="Sets or returns whether or not the textarea should be read-only " />
  1105.    <prop name="rows" desc="Sets or returns the height (in rows) of the textarea " />
  1106.    <prop name="tabIndex" desc="Sets or returns the tab order for the textarea " />
  1107.    <prop name="type" desc="Returns the type of the form element. For a textarea object it will always be "textarea" " />
  1108.    <prop name="value" desc="Sets or returns the text in the textarea " />
  1109.    <method name="blur" desc="Removes focus from the textarea  " />
  1110.    <method name="click" desc="Simulates a mouse-click in the textarea " />
  1111.    <method name="focus" desc="Sets focus on the textarea " />
  1112.    <method name="select" desc="Selects and highlights the entire text that is in the textarea " />
  1113.    <event name="onBlur" desc="Executes some code when the textarea loses focus  " />
  1114.    <event name="onChange" desc="Executes some code when the textarea loses focus and its value has altered " />
  1115.    <event name="onClick" desc="Executes some code when the user clicks the left mouse button in the textarea " />
  1116.    <event name="onFocus" desc="Executes some code when the textarea gets focus " />
  1117.    <event name="onKeyDown" desc="Executes some code when a key is pressed down in the textarea " />
  1118.    <event name="onKeyPress" desc="Executes some code when a key is pressed in the textarea " />
  1119.    <event name="onKeyUp" desc="Executes some code when a key is released in the textarea " />
  1120.    <event name="onSelect" desc="Executes some code when some text in the textarea is selected " />
  1121.  </object>
  1122.  
  1123.  <object name="window" desc="Corresponds to the browser window. A Window object is created automatically with every instance of a <body> or <frameset> tag" >
  1124.    <collect name="frames[]" desc="Returns all named frames in the window" />
  1125.     <prop name="clientInformation" desc="Contains information about the browser  " />
  1126.    <prop name="clipboardData" desc="  " />
  1127.    <prop name="document" desc="This object can be used to access all elements in a page " />
  1128.    <prop name="event" desc="Represents the state of an event " />
  1129.    <prop name="external" desc="  " />
  1130.    <prop name="history" desc="Contains the URLs the user has visited within a browser window " />
  1131.    <prop name="location" desc="Contains the current URL of the window " />
  1132.    <prop name="navigator" desc="Contains information about the client browser " />
  1133.    <prop name="screen" desc="Contains information about the client's display screen" />
  1134.    <prop name="closed" desc="Returns a Boolean value that specifies whether the referenced window has been closed  " />
  1135.    <prop name="defaultStatus" desc="Sets or returns the default text in the statusbar of the windows (will be displayed when the page loads) " />
  1136.    <prop name="dialogArguments" desc="Returns all variables passed into the modal dialog window " />
  1137.    <prop name="dialogHeight" desc="Sets or returns the height of the modal dialog window " />
  1138.    <prop name="dialogLeft" desc="Sets or returns the left coordinates of the modal dialog window " />
  1139.    <prop name="dialogTop" desc="Sets or returns the top coordinates of the modal dialog window " />
  1140.    <prop name="dialogWidth" desc="Sets or returns the width of the modal dialog window " />
  1141.    <prop name="frameElement" desc="Returns the frame/iframe object that is hosting the window in the parent document " />
  1142.    <prop name="length" desc="Sets or returns the number of frames in the window " />
  1143.    <prop name="name" desc="Sets or returns the name of the window " />
  1144.    <prop name="offscreenBuffering" desc="Sets or returns a Boolean value that specifies whether the window is drawn offscreen before being visible to the user " />
  1145.    <prop name="opener" desc="Sets or returns a reference to the window that created the window " />
  1146.    <prop name="parent" desc="Returns the parent window " />
  1147.    <prop name="returnValue" desc="Sets or returns the value returned from the modal dialog window " />
  1148.    <prop name="screenLeft" desc="Returns the x-coordinate of the upper left corner of the browser - relative to the upper left corner of the screen " />
  1149.    <prop name="screenTop" desc="Returns the y-coordinate of the top corner of the browser - relative to the top corner of the screen " />
  1150.    <prop name="self" desc="Returns a reference to the current window " />
  1151.    <prop name="status" desc="Sets or returns the text in the statusbar of the window " />
  1152.    <prop name="top" desc="Returns the topmost ancestor window " />
  1153.    <method name="alert" desc="Displays an alert box with a specified message and an OK button  " />
  1154.    <method name="attachEvent" params="("event",pointer)" desc="  " />
  1155.    <method name="blur" desc="Removes focus from the current window " />
  1156.    <method name="clearInterval(ID)" desc="Cancels a timeout that is set with the setInterval() method " />
  1157.    <method name="clearTimeout(ID)" desc="Cancels a timeout that is set with the setTimeout() method " />
  1158.    <method name="close" desc="Closes the current window " />
  1159.    <method name="confirm" desc="Displays a dialog box with a specified message and an OK and a Cancel button " />
  1160.    <method name="createPopup" desc="Creates a pop-up window " />
  1161.    <method name="execScript" params="("code", "lang")" desc="Executes a specified script." />
  1162.    <method name="focus" desc="Sets focus on the current window " />
  1163.    <method name="moveBy(x,y)" desc="Moves the window a specified number of pixels in relation to its current co-ordinates " />
  1164.    <method name="moveTo(x,y)" desc="Moves the window's left and top edge to the specified co-ordinates" />
  1165.    <method name="navigate" params="("URL")" desc="Loads the specified URL into the window " />
  1166.    <method name="open" desc="Opens a new browser window " />
  1167.    <method name="print" desc="Prints the contents of the current window " />
  1168.    <method name="prompt" desc="Displays a dialog box that prompts the user for input" />
  1169.    <method name="resizeBy" desc="Resizes the window by the specified pixels " />
  1170.    <method name="resizeTo" desc="Resizes the window to the specified width and height " />
  1171.    <method name="scroll" desc="Deprecated. Use scrollTo() instead " />
  1172.    <method name="scrollBy" desc="Scrolls the content by the specified number of pixels " />
  1173.    <method name="scrollTo" desc="Scrolls the content to the specified coordinates " />
  1174.    <method name="setActive" desc="  " />
  1175.    <method name="setInterval" params="(code, millisec[, "lang"])" desc="Calls a function / evaluate an expression every time a specified interval (in milliseconds) has been reached. " />
  1176.    <method name="setTimeout" desc="Calls a function or evaluates an expression after a specified number of milliseconds" />
  1177.    <method name="showHelp" params="("URL"[, contextID])" desc="Displays a Help file (must be of type .htm or .chm). " />
  1178.    <method name="showModalDialog" params="(URL[, args, list])" desc="Loads a URL in a modal dialog box. A modal dialog box retains focus while open. The user CANNOT switch windows until the dialog box is closed. " />
  1179.    <method name="showModelessDialog" params="(URL[, args, list])" desc="Loads a URL in a modeless dialog box. The modeless dialog box displays even when the user switches focus to another window (useful for menus and Help systems). " />
  1180.    <event name="onBlur" desc="Executes some code when a Blur event occurs  " />
  1181.    <event name="onError" desc="Executes some code when an Error event occurs " />
  1182.    <event name="onFocus" desc="Executes some code when a Focus event occurs " />
  1183.    <event name="onLoad" desc="Executes some code when an Load event occurs " />
  1184.    <event name="onResize" desc="Executes some code when a Resize event occurs " />
  1185.    <event name="onUnload" desc="Executes some code when an Unload event occurs " />
  1186.  
  1187.  </object>
  1188. </js>
  1189.